home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / falcon / falclib5 / routs / exit.s < prev    next >
Text File  |  1995-04-27  |  186b  |  16 lines

  1. *
  2. * EXIT.S
  3. *
  4. *    @exitifspace  macro
  5. *     branches to exit if space has been pressed
  6. *     (destroys nothing)
  7. *
  8.  
  9.  
  10. @exitifspace    macro
  11.         cmp.b    #$39,$fffffc02.w
  12.         beq    exit
  13.         endm
  14.  
  15.  
  16.